home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / commands / stterm / Makefile < prev    next >
Makefile  |  1990-07-15  |  366b  |  25 lines

  1. CFLAGS    = -O
  2.  
  3. CMD    = stterm read_tty write_tty
  4. OBJ    = do_shell.o err.o read_tty.o term.o write_tty.o
  5. HDR    = const.h
  6.  
  7. all:    $(CMD)
  8.  
  9. clean:
  10.     rm -f *.o
  11.  
  12. clobber:
  13.     rm -f $(CMD)
  14.  
  15. stterm:    term.o err.o
  16.     $(CC) -o stterm term.o err.o
  17.  
  18. write_tty:    write_tty.o do_shell.o
  19.     $(CC) -o write_tty write_tty.o do_shell.o
  20.  
  21. read_tty:    read_tty.o
  22.     $(CC) -o read_tty read_tty.o
  23.  
  24. $(OBJ):    $(HDR)
  25.